RemoveAt Method

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Removes the item at the given index in the BigList. All items at indexes greater than index move down one index.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public override sealed void RemoveAt(
	int index
)
Visual Basic (Declaration)
Public Overrides NotOverridable Sub RemoveAt ( _
	index As Integer _
)
Visual C++
public:
virtual void RemoveAt (
	int index
) override sealed

Parameters

index
Int32
The index in the list to remove the item at. The first item in the list has index 0.

Remarks

The amount of time to delete an item in the BigList is O(log N), where N is the number of items in the list.

Exceptions

ExceptionCondition
System..::ArgumentOutOfRangeExceptionindex is less than zero or greater than or equal to Count.

See Also